home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 430 b | 21 lines | [TEXT/CWIE] |
- // MenuBarObject.cp
-
- #ifndef MenuBarObject_h
- #include "MenuBarObject.h"
- #endif
-
- MenuResult MenuBarObject::Key( ::Key key )
- {
- MenuResult result = MenuKey( key.Character() );
- if ( !result.Null() )
- return result;
-
- KCHRCache *kchr = Key::GetKCHRCache();
-
- result = MenuKey( Byte0( key.WithModifiers( 0, kchr ) ) );
- if ( !result.Null() )
- return result;
-
- return MenuKey( Byte0( key.WithModifiers( shiftKey, kchr ) ) );
- }
-